Platform Explorer / Nuxeo Platform 2023.10

Extension point requestdump

Documentation

Define a class that will take a request and output a string dumping informations.

Contribution Descriptors

  • Class: org.nuxeo.ecm.platform.web.common.exceptionhandling.descriptor.RequestDumpDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-platform-web-common-2023.10.13.jar /OSGI-INF/exception-handling-contrib.xml
    <extension point="requestdump" target="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingService">
        <requestdump class="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.DefaultRequestDumper">
          <!-- you can add names of attributes you don't want to see listed in the request dump.
            <notListed>
            <attribute>javax.servlet.forward.request_uri</attribute>
            </notListed>
          -->
        </requestdump>
      </extension>
  • nuxeo-platform-webapp-core-2023.10.13.jar /OSGI-INF/exceptionhandling-contrib.xml
    <extension point="requestdump" target="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.ExceptionHandlingService">
        <requestdump class="org.nuxeo.ecm.platform.web.common.exceptionhandling.service.DefaultRequestDumper">
          <notListed>
            <attribute>org.jboss.seam.international.messages</attribute>
          </notListed>
        </requestdump>
      </extension>